home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / util / cli / sploinerwos.lha / source.lha / Makefile < prev    next >
Makefile  |  1995-09-26  |  374b  |  21 lines

  1. CC = gcc
  2.  
  3. CFLAGS        = $(OPTIMIZE) #-Wall -ansi -pedantic
  4.  
  5. OPTIMIZE        = -O2 # -g
  6. STRIP        = -Xlinker -s 
  7. LOADLIBES    = #-noixemul # for Amiga - the ixemul.library is faulty
  8.  
  9. OBJS        = sploiner.o join.o repair.o \
  10.           split.o usage.o getbuff.o getopt.o
  11.  
  12.  
  13. sploiner:        $(OBJS)
  14.         $(CC) $(LOADLIBES) $(OBJS) $(STRIP) -o sploiner
  15.  
  16. usage.o: common.h
  17.  
  18. clean:        
  19.         rm -f $(OBJS) sploiner
  20.  
  21.